Returning a byte[] in WCF service
Posted
by acadia
on Stack Overflow
See other posts from Stack Overflow
or by acadia
Published on 2010-05-21T19:42:43Z
Indexed on
2010/05/21
19:50 UTC
Read the original article
Hit count: 124
wcf
Is it a good practice to return a byte[] in a WCF service which will be invoked by many applications
below is the code
public byte[] GetDoc(string docParam)
{
byte[] doc;
doc = GenerateDoc(docParam);
}
Thanks
© Stack Overflow or respective owner